home *** CD-ROM | disk | FTP | other *** search
/ Raunch / ROM Antics - Raunch.iso / mac / RAUNCH / RAUNCH.DXR / 00062_volON.pct.ls < prev    next >
Encoding:
Text File  |  1995-01-26  |  319 b   |  15 lines

  1. on mouseUp
  2.   global SoundSwitch
  3.   if SoundSwitch <> 1 then
  4.     set the castNum of sprite 21 to 78
  5.     updateStage()
  6.     set the volume of sprite 30 to 0
  7.     set SoundSwitch to 1
  8.   else
  9.     set the castNum of sprite 21 to 62
  10.     updateStage()
  11.     set the volume of sprite 30 to 200
  12.     set SoundSwitch to 0
  13.   end if
  14. end
  15.